home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000221_fdc@columbia.edu_Tue Aug 12 14:29:31 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  4KB  |  82 lines

  1. Article: 14459 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Telnet zmodem
  6. Date: 12 Aug 2003 14:29:25 -0400
  7. Organization: Columbia University
  8. Lines: 65
  9. Message-ID: <bhbbm5$rrj$1@watsol.cc.columbia.edu>
  10. References: <WpYZa.2154$u%2.1308@nwrdny02.gnilink.net> <bhapf2$d0a$1@watsol.cc.columbia.edu> <0r9_a.319$jw4.275@nwrdny03.gnilink.net>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1060712966 2721 128.59.39.139 (12 Aug 2003 18:29:26 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 12 Aug 2003 18:29:26 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14459
  16.  
  17. In article <0r9_a.319$jw4.275@nwrdny03.gnilink.net>,
  18. marty  <nospam@dontbother.luser> wrote:
  19. : Frank da Cruz wrote:
  20. : > In article <WpYZa.2154$u%2.1308@nwrdny02.gnilink.net>,
  21. : > marty  <nospam@dontbother.luser> wrote:
  22. : > : Using:  C-Kermit 8.0.209, 17 Mar 2003, for Linux(RH 8.0)
  23. : > : ...
  24. : > : From a C-Kermit prompt I telnet to and log onto the server.  The
  25. : > : procedure for downloading via a telnet connection is to choose the
  26. : > : download option and name the file one wishes to download.  Chose
  27. : > : xmodem or zmodem (C-Kermit: set protocol zmodem) and the process
  28. : > : begins...
  29. : > : 
  30. : > "set protocol zmodem" invokes an external protocol, whatever Red Hat
  31. : > happens to have installed as "rz" and "sz".
  32. : Yes I was aware of that fact, thanks.
  33. Yes but I didn't know you were aware.
  34.  
  35. : > : The process finishes with me being dumped back to the C-Kermit prompt.
  36. : > : Status: FAILURE
  37. : > : 
  38. : > So "rz" failed.
  39. : Actually, I wrongly stated that status reported 'FAILURE'.  In fact after 
  40. : all of these failed transfers, typing 'Status' at the C-Kermit prompt 
  41. : reports: 'SUCCESS'
  42. Probably you gave some other command that succeeded after the failed
  43. file transfer and before the STATUS command.  From your posting, it's clear
  44. that Kermit reported failure.
  45.  
  46. : > Some knowledge of serial communication is required.  The C-Kermit book has
  47. : > chapters and chapters explaining all this.
  48. : Ok, so you would like me to buy your book!  Maybe I will, but in the 
  49. : meantime your help is greatly appreciated.
  50. My point is that it takes a lot of explaining, more than you'd expect me to
  51. type in the response to a newsgroup posting.  That's why we wrote the books.
  52. We definitely do not get rich from them.
  53.  
  54. : > You have to make sure an effective form of flow control is established
  55. : > between every pair of devices along the communication path, e.g. local
  56. : > computer to its modem, modem to modem, remote modem to remote serial
  57. : > port.  See:
  58. : > 
  59. : >   http://www.columbia.edu/kermit/support.html#hints
  60. : Thanks for the link but one minor detail I failed to mention.  My connection 
  61. : to the remote host is via broadband and the Internet, no modem(s) involved.  
  62. : I've tried various flow-control settings for both 'tcpip' and 'remote' to 
  63. : no avail?
  64. Then it's a Zmodem protocol failure, which is prone to happen over Telnet
  65. connections due to Telnet NVT rules, which Kermit obeys but many Zmodem
  66. implementations do not.  Some of them might have a command-line option to
  67. force them to adapt to Telnet connections.  Kermit protocol would work a
  68. lot better -- you might want to mention this to whoever is in charge of
  69. the other end.  Meanwhile, you'll have to look at the rz and sz programs
  70. on your Linux system and see what command-line options are available and
  71. tailor Kermit's SET PROTOCOL command accordingly.
  72.  
  73. - Frank
  74.